﻿html, body {
    height: 100%;
    font-family: "Outfit", sans-serif !important;
}

.brdr {
    border: 1.5px solid gray;
    border-radius: 4px !important;
    padding: 3px 10px;
}




/*============= main section here ==============*/

.main_section .box-wrapper {
    height: 100%;
    padding: 50px 0px;
}

.main_section .box {
    border-top: none;
    background-color: var(--lightBg);
    display: grid !important;
    height: 100% !important;
    box-shadow: none;
    padding: 0px 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.main_section .box .box-body {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.main_section .addon-details {
    display: flex;
    align-items: center;
}

.main_section .addon-details .image {
    height: 100px;
    width: 100px;
    border-radius: 5px;
    overflow: hidden;
    background-color: white;
    outline: 2px solid white;
}

.main_section .addon-details .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.main_section .addon-data {
    font-weight: 700;
}

.main_section .addon-data .product-category {
    color: red;
}

.main_section .addon-data .product-title {
    font-size: 16px;
}

.main_section .box-footer {
    display: grid;
    border-top: 2px solid lightgray;
    padding: 15px 0px 0px 0px;
}

.main_section .box-footer .btn-add-cart {
    padding: 10px 35px;
    background-color: var(--orange);
    color: black;
    font-size: 18px;
    border-radius: 6px;
    font-weight: 700;
}

.main_section .box-footer .btn-add-cart:hover {
    background-color: black;
    color: white;
}

.main_section .addon-quantity .later-addon {
    display: flex;
}


.main_section .box-footer {
    border-top: none;
}



/*======================= Media Query here =====================*/

@media (max-width:850px) {

    .main_section .addon-data {
        padding: 0px 20px;
    }

}

@media (max-width:767.5px){

  .addon-quantity {
      margin-top: 20px;
  }

  .main_section .addon-data {
        padding: 0px;
  }

}

@media (max-width:576px){

  .main_section .box-footer .btn-add-cart {
        padding: 10px 28px;
        font-size: 16px;
    }

}

@media (max-width:400px) {

    .main_section .addon-details .image {
        height: 80px;
        width: 80px;
    }

    .main_section .addon-data {
        padding: 0px 5px 0px 20px;
    }

    .main_section .addon-data .product-title {
        font-size: 15px;
    }

    .main_section .addon-quantity .later-addon {
        display: flex;
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .main_section .addon-quantity .later-addon .col-4 {
        width: 50%;
    }

}